home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLG
- ; This script shows how to use the color altering effects.
- ; F:\CINDY8.GIF is loaded and then the red level is increased 25 times
- ; Then the Green level is increased 25 times.
- ; Then the Blue level is increased 25 times.
- ; Then the colors are reset to normal.
- ; By the way, this script also shows you how to use variables
- ; At the end the picture is held for 5 seconds, then a DIR of the drive C:\
- ; is done with the SYSTEM command. Then a SHELL to DOS is performed.
- : NOTE: The TEXT command was used so that you could see what the DIR of Drive
- ; C:\ looks like. If you keep the screen in graphics mode and do a DOS
- ; command that prints to your screen, you might NOT like the appearance.
- ;
- set v1 1
- load f:\cindy8.gif
- :loop1
- more-red
- set v1 +
- if v1>25 :exit1
- goto :loop1
- :exit1
- set v1 1
- :loop2
- more-green
- set v1 +
- if v1>25 :exit2
- goto :loop2
- :exit2
- set v1 1
- :loop3
- more-blue
- set v1 +
- if v1>25 :exit3
- goto :loop3
- :exit3
- reset-colors
- Wait 500
- Text
- system dir c:\
- Wait 200
- system
- beep